home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-30 | 346 b | 18 lines | [TEXT/Rich] |
- unit TP3extra;
-
- interface
-
- FUNCTION Gestalt(selector: OSType; VAR response: LONGINT): OSErr;
-
- implementation
-
- FUNCTION _Gestalt(selector: OSType; VAR response: LONGINT): OSErr;
- INLINE $225F, $201F, $A1AD, $2288, $3E80;
-
- FUNCTION Gestalt(selector: OSType; VAR response: LONGINT): OSErr;
- begin
- Gestalt := _Gestalt(selector, response);
- end;
-
- end.
-